go/parser.parser.parseRhsOrType (method)

7 uses

	go/parser (current package)
		interface.go#L216: 	expr = p.parseRhsOrType()
		parser.go#L570: 	argparser := p.parseRhsOrType
		parser.go#L1372: 		x := p.parseRhsOrType() // types may be parenthesized: (some type)
		parser.go#L1452: 		index[0] = p.parseRhsOrType()
		parser.go#L1524: 		list = append(list, p.parseRhsOrType()) // builtins may expect a type: make(some type, ...)
		parser.go#L1867: func (p *parser) parseRhsOrType() ast.Expr {
		parser.go#L1975: 	x := p.parseRhsOrType() // could be a conversion: (some type)(x)